home *** CD-ROM | disk | FTP | other *** search
- # Edit this file for local setup changes
- #
- # Ariel - I added several modules to the default ones.
- # Could do more but these required either:
- # 1) Sources that aren't included by default
- # 2) Stuff that's available on IRIX 6.5 but not on 6.2
- # All in all a slight compromise.
- #
-
- # The SGI specific GL module:
- GLHACK=-Dclear=__GLclear
- gl glmodule.c cgensupport.c -I$(srcdir) $(GLHACK) -lgl -lX11
-
-
- # GNU readline. Unlike previous Python incarnations, GNU readline is
- # now incorporated in an optional module, configured in the Setup file
- # instead of by a configure script switch. You may have to insert a
- # -L option pointing to the directory where libreadline.* lives,
- # and you may have to change -ltermcap to -ltermlib or perhaps remove
- # it, depending on your system -- see the GNU readline instructions.
- # It's okay for this to be a shared library, too.
- #
- # Ariel: This is useful. I rely on it to be in /usr/freeware/lib32
- #
- readline readline.c -I/usr/freeware/include -L/usr/freeware/lib32 -lreadline -ltermcap
-
-
- # The crypt module is now disabled by default because it breaks builds
- # on many systems (where -lcrypt is needed), e.g. Linux (I believe).
- crypt cryptmodule.c -L/usr/lib32 -lcrypt
- # crypt(3); needs -lcrypt on some systems
-
-
- # Some more UNIX dependent modules -- off by default, since these
- # are not supported by all UNIX systems:
- # nis nismodule.c # Sun yellow pages -- not everywhere
- termios termios.c # Steen Lumholt's termios module
- resource resource.c # Jeremy Hylton's rlimit interface
-
-
- # Multimedia modules -- off by default.
- # These don't work for 64-bit platforms!!!
- # These represent audio samples or images as strings:
-
- audioop audioop.c # Operations on audio samples
- imageop imageop.c # Operations on images
- rgbimg rgbimgmodule.c # Read SGI RGB image files (but coded portably)
-
-
- # The stdwin module provides a simple, portable (between X11 and Mac)
- # windowing interface. You need to ftp the STDWIN library, e.g. from
- # ftp://ftp.cwi.nl/pub/stdwin. (If you get it elsewhere, be sure to
- # get version 1.0 or higher!) The STDWIN variable must point to the
- # STDWIN toplevel directory.
-
- # Uncomment and edit as needed:
- #STDWIN=/ufs/guido/src/stdwin
-
- # Uncomment these lines:
- #STDWINPATH=:lib-stdwin
- #LIBTEXTEDIT=$(STDWIN)/$(MACHDEP)/Packs/textedit/libtextedit.a
- #LIBX11STDWIN=$(STDWIN)/$(MACHDEP)/Ports/x11/libstdwin.a
- #stdwin stdwinmodule.c -I$(STDWIN)/H $(LIBTEXTEDIT) $(LIBX11STDWIN) -lX11
-
- # Use this instead of the last two lines above for alphanumeric stdwin:
- #LIBALFASTDWIN=$(STDWIN)/$(MACHDEP)/Ports/alfa/libstdwin.a
- #stdwin stdwinmodule.c -I$(STDWIN)/H $(LIBTEXTEDIT) $(LIBALFASTDWIN) -ltermcap
-
-
- # SGI IRIX specific modules -- off by default.
- # These module work on any SGI machine:
- # *** gl must be enabled higher up in this file ***
- fm fmmodule.c $(GLHACK) -lfm -lgl # Font Manager
- sgi sgimodule.c # sgi.nap() and a few more
-
- # Ariel: doesn't exist by deafult on 6.2 ?
- # This module requires the header file
- # /usr/people/4Dgifts/iristools/include/izoom.h:
- # imgfile imgfile.c -limage -lgutil -lgl -lm # Image Processing Utilities
-
-
- # These modules require the Multimedia Development Option (I think):
- al almodule.c -laudio # Audio Library
- # cd cdmodule.c -lcdaudio -lds -lmediad # CD Audio Library
- cl clmodule.c -lcl -lawareaudio # Compression Library
- # sv svmodule.c yuvconvert.c -lsvideo -lXext -lX11 # Starter Video
-
-
- # The FORMS library, by Mark Overmars, implements user interface
- # components such as dialogs and buttons using SGI's GL and FM
- # libraries. You must ftp the FORMS library separately from
- # ftp://ftp.cs.ruu.nl/pub/SGI/FORMS. It was tested with FORMS 2.2a.
- # NOTE: if you want to be able to use FORMS and curses simultaneously
- # (or both link them statically into the same binary), you must
- # compile all of FORMS with the cc option "-Dclear=__GLclear".
-
- # The FORMS variable must point to the FORMS subdirectory of the forms
- # toplevel directory:
-
- # FORMS=/ufs/guido/src/forms/FORMS
- # fl flmodule.c -I$(FORMS) $(GLHACK) $(FORMS)/libforms.a -lfm -lgl
-
-
- # George Neville-Neil's timing module:
- timing timingmodule.c
-
-
- # The _tkinter module.
- #
- # The TKPATH variable is always enabled, to save you the effort.
- TKPATH=:lib-tk
-
- # The command for _tkinter is long and site specific. Please
- # uncomment and/or edit those parts as indicated. If you don't have a
- # specific extension (e.g. Tix or BLT), leave the corresponding line
- # commented out. (Leave the trailing backslashes in! If you
- # experience strange errors, you may want to join all uncommented
- # lines and remove the backslashes -- the backslash interpretation is
- # done by the shell's "read" command and it may not be implemented on
- # every system.
-
- # *** Always uncomment this (leave the leading underscore in!):
- # _tkinter _tkinter.c tkappinit.c -DWITH_APPINIT \
- # *** Uncomment and edit to reflect where your Tcl/Tk headers are:
- # -I/usr/local/include \
- # *** Uncomment and edit to reflect where your X11 header files are:
- # -I/usr/X11R6/include \
- # *** Or uncomment this for Solaris:
- # -I/usr/openwin/include \
- # *** Uncomment and edit for Tix extension only:
- # -DWITH_TIX -ltix4.1.8.0 \
- # *** Uncomment and edit for BLT extension only:
- # -DWITH_BLT -I/usr/local/blt/blt8.0-unoff/include -lBLT8.0 \
- # *** Uncomment and edit for PIL (TkImaging) extension only:
- # -DWITH_PIL -I../Extensions/Imaging/libImaging tkImaging.c \
- # *** Uncomment and edit for TOGL extension only:
- # -DWITH_TOGL togl.c \
- # *** Uncomment and edit to reflect where your Tcl/Tk libraries are:
- # -L/usr/local/lib \
- # *** Uncomment and edit to reflect your Tcl/Tk versions:
- # -ltk8.0 -ltcl8.0 \
- # *** Uncomment and edit to reflect where your X11 libraries are:
- # -L/usr/X11R6/lib \
- # *** Or uncomment this for Solaris:
- # -L/usr/openwin/lib \
- # *** Uncomment these for TOGL extension only:
- # -lGL -lGLU -lXext -lXmu \
- # *** Uncomment for AIX:
- # -lld \
- # *** Always uncomment this; X11 libraries to link with:
- # -lX11
-
- # Lance Ellinghaus's modules:
-
- syslog syslogmodule.c # syslog daemon interface
-
-
- # Lance's curses module. This requires the System V version of
- # curses, sometimes known as ncurses (e.g. on Linux, link with
- # -lncurses instead of -lcurses; on SunOS 4.1.3, insert -I/usr/5include
- # -L/usr/5lib before -lcurses).
-
- curses cursesmodule.c -lcurses -ltermcap
-
-
-
- # Modules that provide persistent dictionary-like semantics. You will
- # probably want to arrange for at least one of them to be available on
- # your machine, though none are defined by default because of library
- # dependencies. The Python module anydbm.py provides an
- # implementation independent wrapper for these; dumbdbm.py provides
- # similar functionality (but slower of course) implemented in Python.
-
- # The standard Unix dbm module:
- dbm dbmmodule.c # dbm(3) may require -lndbm or similar
-
- # Anthony Baxter's gdbm module. GNU dbm(3) will require -lgdbm:
- gdbm gdbmmodule.c -I/usr/freeware/include -L/usr/freeware/lib32 -lgdbm
-
-
- # Berkeley DB interface.
- #
- # This requires the Berkeley DB code, see
- # ftp://ftp.cs.berkeley.edu/pub/4bsd/db.1.85.tar.gz
- #
- # Edit the variables DB and DBPORT to point to the db top directory
- # and the subdirectory of PORT where you built it.
- #
- # (See http://www.jenkon-dev.com/~rd/python/ for an interface to
- # BSD DB 2.1.0.)
-
- #DB=/depot/sundry/src/berkeley-db/db.1.85
- #DBPORT=$(DB)/PORT/irix.5.3
- #bsddb bsddbmodule.c -ldb
-
- # Andrew Kuchling's zlib module.
- # This require zlib 1.0.4 (or later). See http://quest.jpl.nasa.gov/zlib/
- # See http://www.cdrom.com/pub/infozip/zlib/
- #zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
-
-
- # Example -- included for reference only:
- # xx xxmodule.c
-